API Documentation
ProjectLoader.h
1 // ProjectLoader.h
3 //
5 
6 namespace nkScripts
7 {
13  class DLL_SCRIPTS_EXPORT ProjectLoader final
14  {
15  public :
16 
22  static void save (const ProjectSaveQuery& query) ;
23 
30  static ProjectLoadResult load (const ProjectLoadQuery& query) ;
31  } ;
32 }
nkScripts::ProjectLoadQuery
Holds information about a project load query.
Definition: ProjectLoadQuery.h:12
nkScripts
Encompasses all API of component NilkinsScripts.
Definition: Environment.h:7
nkScripts::ProjectLoadResult
Holds information about a project load attempt.
Definition: ProjectLoadResult.h:12
nkScripts::ProjectLoader::load
static ProjectLoadResult load(const ProjectLoadQuery &query)
nkScripts::ProjectSaveQuery
Holds information for a project saving query.
Definition: ProjectSaveQuery.h:12
nkScripts::ProjectLoader::save
static void save(const ProjectSaveQuery &query)
nkScripts::ProjectLoader
Offers project loading / saving capabilities.
Definition: ProjectLoader.h:14